/* CSS Boiler Plate Start*/

* {
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  scroll-behavior: smooth;

}

/* CSS Boiler Plate End */


/* Defined Constant (Root) Start   */

:root {
  --text-color: #0000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
  --pane-padding: 32px 100px;
  --primary-font-family: 'Poppins', sans-serif;
  --primary-font-weight: 450;
  --primary-font-style: normal;
  --primary-font-size: 22px;
  --box-shadow: 0px 2px 5px rgb(255, 255, 255);


}

/* Defined Constant (Root) End */



/* Footer CSS */
.full-footer {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a, #1f1f3a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.footer-logo {
  text-align: center;
  max-width: 600px;
}

.footer-logo h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-logo p {
  color: #aaa;
  font-size: 1rem;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-box a:hover {
  color: #fff;
}

.social-icons a img {
  width: 32px;
  margin-right: 15px;

  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}



/* Responsive Start  */
@media (max-width:400px) {
  .full-footer {
    padding: 40px 20px;
  }

  .footer-box{

    width: 50%;
  h3{
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}
  }

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}
}

/* Responsive End  */